Fix the build.
authorSteve Klabnik <steve@steveklabnik.com>
Sat, 2 Aug 2014 01:56:12 +0000 (21:56 -0400)
committerAlex Crichton <alex@alexcrichton.com>
Sat, 2 Aug 2014 07:16:19 +0000 (00:16 -0700)
After an upstream fix in docopt, cargo now builds on rust HEAD. Also,
move to the semver crate rather than the deprecated built-in one.

Cargo.toml

index c56dfca0bed39812df4e34787a58f6f9d44555ed..31c1badd2ad3409d68f2ff0483d6e9ebd69d3f60 100644 (file)
@@ -13,23 +13,28 @@ path = "src/cargo/lib.rs"
 # TODO: remove all these `rev` markers once we have an official lockfile
 [dependencies.docopt]
 git = "https://github.com/burntsushi/docopt.rs"
-rev = "0babd54a"
+rev = "fd2377d"
 
 [dependencies.docopt_macros]
 git = "https://github.com/burntsushi/docopt.rs"
-rev = "0babd54a"
+rev = "fd2377d"
 
 [dependencies.toml]
 git = "https://github.com/alexcrichton/toml-rs"
-rev = "a3c7f2c3"
+rev = "7e1c1e1"
 
 [dependencies.hamcrest]
 git = "https://github.com/carllerche/hamcrest-rust.git"
-rev = "05acf768"
+rev = "c23b876"
 
 [dependencies.url]
 git = "https://github.com/servo/rust-url"
-rev = "98a28e85"
+rev = "3d54552"
+
+[dependencies.semver]
+git = "https://github.com/rust-lang/semver"
+rev = "e17191f"
+
 
 [[bin]]
 name = "cargo"